home *** CD-ROM | disk | FTP | other *** search
/ Champak 99 / (Vol 99) Jan 19 2010.iso / Games / arkanoid.swf / scripts / DefineButton2_186 / BUTTONCONDACTION on(release).as
Text File  |  2010-01-19  |  317b  |  22 lines

  1. on(release){
  2.    if(button == 1)
  3.    {
  4.       started = 1;
  5.       button = 0;
  6.    }
  7.    else if(button == 2)
  8.    {
  9.       release = 1;
  10.       caughtBall = 0;
  11.       button = 2;
  12.    }
  13.    else if(button == 3)
  14.    {
  15.       trace("you\'ve got laser");
  16.    }
  17.    else
  18.    {
  19.       trace("you\'ve got nothing");
  20.    }
  21. }
  22.